home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / biz / dbase / EV30F.lha / EasyVideo / REXX / EV_BefehlDatum.rexx < prev    next >
OS/2 REXX Batch file  |  1994-09-30  |  240b  |  19 lines

  1. /* RexxStart für EasyVideo
  2.    (c) Jörg Trahm
  3.  
  4.     setze das heutige Datum ein
  5.  
  6. */
  7.  
  8.  
  9. call addlib('rexxsupport.library',0,-30)
  10. parse arg PortName
  11. address(PortName)
  12. options results
  13.  
  14. EV_Setze "!Datum=" || translate(date(European),".","/")
  15.  
  16. exit
  17.  
  18.  
  19.